How to Add Sitemap Widget In Blogspot Blogs
Sitemap is the most essential thing which every blogger should add in his/her blog. Its not just a page but helps a lot to reduce bounce rate immediately by providing direct navigation to label specific post. The sitemap widget we're going to add today shows a list of articles on the latest published order under each categories, This widget is based on ajax so it will load blazing fast and will not affect the performance of your blog.
Lets move further and see How to Add Sitemap Widget In Blogspot Blogs. You can check a live preview of the Author Box widget by clicking the button below.
Lets move further and see How to Add Sitemap Widget In Blogspot Blogs. You can check a live preview of the Author Box widget by clicking the button below.
Let's Start Step-1 ( Adding CSS )
Before Editing we recommend you to make a backup of your template, so that anything goes wrong you still have your blog design safe.
The First thing you need to do is to login into your Blogger account and go to >> Templates >> Edit HTML and search for the ending ]]></b:skin> tag and just above it paste the following code.
/* ######## Navigation Menu Css by sorabloggingtips.com ######################### */
.mapasite {
margin-bottom: 10px;
background-color: #F8F8F8
}
.mapasite.active .mapa {
display: block
}
.mapasite .mapa {
display: none
}
.mapasite h2 {
background-color: #EEE;
color: #000;
font-size: 15px;
padding: 10px 20px;
border-radius: 2px;
margin-bottom: 0;
cursor: pointer;
font-weight: 700
}
.mapasite h2 .botao {
font-size: 18px;
line-height: 1.2em
}
.botao .fa-minus-circle {
color: #f30
}
.mapapost {
overflow: hidden;
margin-bottom: 20px;
height: 70px;
background-color: #FFF
}
.mapa {
padding: 40px
}
.map-thumb {
background-color: #F0F0F0;
padding: 10px;
display: block;
width: 65px;
height: 50px;
float: left
}
.map-img {
width: 65px;
height: 50px;
overflow: hidden;
border-radius: 2px
}
.map-thumb a {
width: 100%;
height: 100%;
display: block;
transition: all .3s ease-out!important;
-webkit-transition: all .3s ease-out!important;
-moz-transition: all .3s ease-out!important;
-o-transition: all .3s ease-out!important
}
.map-thumb a:hover {
-webkit-transform: scale(1.1) rotate(-1.5deg)!important;
-moz-transform: scale(1.1) rotate(-1.5deg)!important;
transform: scale(1.1) rotate(-1.5deg)!important;
transition: all .3s ease-out!important;
-webkit-transition: all .3s ease-out!important;
-moz-transition: all .3s ease-out!important;
-o-transition: all .3s ease-out!important
}
.mapapost .wrp-titulo {
padding-top: 10px;
font-weight: 700;
font-size: 14px;
line-height: 1.3em;
padding-left: 25px;
padding-right: 10px;
display: block;
overflow: hidden;
margin-bottom: 5px
}
.mapapost .wrp-titulo a {
}
.mapapost .wrp-titulo a:hover {
color: #f30;
text-decoration: underline
}
.map-meta {
display: block;
float: left;
overflow: hidden;
padding-left: 25px;
}
.mapasite h2 .botao {
float: right
}
Step-2 ( Adding HTML Script )
Now this is the most essential part of the tutorial and you have to do it very carefully. In the template, search for the </body> tag and just above it paste the following HTML Coding.
<script type='text/javascript'>
//<![CDATA[
var text_month = [, "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec"];
var no_image_url = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-mq-uYnI-eIHOyYkLu-ZZlw7C9xo76MQNmQCX1qK2fuSrFmTys6DNinpSCS2YT0XeC6j3JV9oerlHtJgMPKUZu6Kvx9U-schhbl5y5La9dLW-15Gdo5hqcKPeiYtY5RPlQcI1YYAM5P8/s1600-r/nth.png";
var static_page_text = $.trim($('.static_page .post-body').text());
if (static_page_text === "[sitemap]") {
var postbody = $('.static_page .post-body');
$.ajax({
url: "/feeds/posts/default?alt=json-in-script",
type: 'get',
dataType: "jsonp",
success: function(dataZ) {
var blogLabels = [];
for (var t = 0; t < dataZ.feed.category.length; t++) {
blogLabels.push(dataZ.feed.category[t].term)
}
var blogLabels = blogLabels.join('/');
postbody.html('<div class="siteLabel"></div>');
$('.static_page .post-body .siteLabel').text(blogLabels);
var splabel = $(".siteLabel").text().split("/");
var splabels = "";
for (get = 0; get < splabel.length; ++get) {
splabels += "<span>" + splabel[get] + "</span>"
}
$(".siteLabel").html(splabels);
$('.siteLabel span').each(function() {
var mapLabel = $(this);
var mapLabel_text = $(this).text();
$.ajax({
url: "/feeds/posts/default/-/" + mapLabel_text + "?alt=json-in-script",
type: 'get',
dataType: "jsonp",
success: function(data) {
var posturl = "";
var htmlcode = '<div class="mapa">';
for (var i = 0; i < data.feed.entry.length; i++) {
for (var j = 0; j < data.feed.entry[i].link.length; j++) {
if (data.feed.entry[i].link[j].rel == "alternate") {
posturl = data.feed.entry[i].link[j].href;
break
}
}
var posttitle = data.feed.entry[i].title.$t;
var author = data.feed.entry[i].author[0].name.$t;
var get_date = data.feed.entry[i].published.$t,
year = get_date.substring(0, 4),
month = get_date.substring(5, 7),
day = get_date.substring(8, 10),
date = text_month[parseInt(month, 10)] + ' ' + day + ', ' + year;
var tag = data.feed.entry[i].category[0].term;
var content = data.feed.entry[i].content.$t;
var $content = $('<div>').html(content);
var src2 = data.feed.entry[i].media$thumbnail.url;
htmlcode += '<div class="mapapost"><div class="map-thumb"><div class="map-img"><a href="' + posturl + '" style="background:url(' + src2 + ') no-repeat center center;background-size: cover"/></div></div><h3 class="wrp-titulo"><a href="' + posturl + '">' + posttitle + '</a></h3><div class="map-meta"><span class="p-author">' + author + '</span><span class="p-date">' + date + '</span></div></div>'
}
htmlcode += '</div>';
mapLabel.replaceWith('<div class="mapasite"><h2>' + mapLabel_text + '<span class="botao"><i class="fa fa-plus-circle"></i></span></h2>' + htmlcode + '</div>');
$(document).on('click', '.mapasite h2', function() {
$(this).parent('.mapasite').addClass('active');
$(this).find('.botao .fa').removeClass('fa-plus-circle').addClass('fa-minus-circle');
});
$(document).on('click', '.mapasite.active h2', function() {
$(this).parent('.mapasite').removeClass('active');
$(this).find('.botao .fa').addClass('fa-plus-circle').removeClass('fa-minus-circle');
});
}
});
});
}
});
}
//]]>
</script>
Now Save your template and go to pages to add sitemap.
Note :- the widget works on jquery so you have to install jquery plugin if you haven't installed it yet..
Step-3 ( Adding Sitemap In Pages ) - Most Important !!
Now this is the most essential part of the tutorial and you have to do it very carefully.Go to your blogger dashboard > Pages > Add New Page.
On the new page content after adding the page title and hiding the comments using options, add the following code in the page content area.
On the new page content after adding the page title and hiding the comments using options, add the following code in the page content area.
[sitemap]For better understanding check the highlighted area in the below image.
Now click publish button and check the published page to see the newly added sitemap widget. ;)
Conclusion
Congrats !! You have made it. now you have learned that How to Add Sitemap Widget In Blogspot Blogs. Visit your blog and check the awesome widget live in action, hope you liked this tutorial, if you enjoyed then please share it with your friends, we are working hard to develop more such awesome widgets please stay tuned with Us.
How to Add Sitemap Widget In Blogspot Blogs
Reviewed by SoraBloggingTips
on
January 22, 2017
Rating:
Did not work for my blog and it is one of your templates. http://www.blastedgist.ml/p/sitemap.html
ReplyDeleteWe can't see proper codes in your blog.
Deletetry it on html
Deletehttp://marsyamochi13.blogspot.co.id/p/site-map.html not working :"(
Deletethe page you were trying to view does not exist
DeleteThanks sora blog my blog working
Deletecheck here
Is not working...
ReplyDeleteWhat kind of problem are you facing.
DeleteSir, how to install the jquery plugin? please provide the code. Thanks a lot
DeleteIt's only important if your blog doesn't have one.
Deletehttp://www.sorabloggingtips.com/2017/07/how-to-add-jquery-in-blogger-and-blogspot-blogs.html
how to install jquery plugin for sitemap?
ReplyDeleteVery Soon we will publish a tutorial about it, stay tuned.
Deletewhat does "for unlimited domains" Mean?
ReplyDeleteI installed your theme on my blog Http://humptechtips.com please tell me
You can Use it for as many domains as you can.
DeleteSITEMAP PLEASE SORA ...http://ancestral70.blogspot.pt/
ReplyDeleteFollow the above tutorial, to install sitemap.
Deleteit is showing the [sitemap] when i view the page nothing more and nothing less ??
ReplyDeleteblog url
DeleteHi sir, I followed your instruction but the sitemap is not working on my website https://content2seo.blogspot.in/ please help
ReplyDeleteyour sitemap url
Deletenot working you see : http://blog.chutuananh.com/p/bptoc-backgroundffaaa4color666margin0.html
ReplyDeleteError 404
Deletenot working!!!
ReplyDeletehttp://4techblogger.blogspot.com/p/sitemap.html
working
DeleteIt's works.....thank you! [terima kasih! (in Bahasa Indonesia)]
ReplyDeletewww.chakrasinatriya.blogspot.com
please help... didnt work for me.
ReplyDeletehttps://gkmade-easy.blogspot.com/p/sitemap.html
Blog not found.
Deletehttps://military-choice.blogspot.in/p/sitemap_57.html
Deletemy jquery code - https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
We have updated the code please replace the code with older one.
Deletewhat is the older code
DeleteScripts
Deletehelp me. didnt work :(
ReplyDeleteYour sitemap url
Deletecan i download this template ps
ReplyDeleteWhich template ?
DeleteThis tutorial I have applied to my blog blogonDOTid, and works well, thanks Sora
ReplyDeleteshare your sitemap url.
Deletedidnt work http://www.jamzok.com/p/sitemap.html
ReplyDeleteYou have to publish the codes in content tab instead of HTML.
DeleteHey! Thanks for the tutorial! It works fine with my blog with flora theme
ReplyDeleteCheck my blog!
Thank again!!
Blog: https://lowtech-pt.blogspot.pt - The "* ######## Navigation Menu Css by sorabloggingtips.com ######################### */ ..." code apear on the head of the blog :(
ReplyDeleteCopy the css carefully, you may have missed anything.
DeleteResolved Tks ;)
DeleteYou have to publish the codes in content tab instead of HTML.
ReplyDeletei unable to find ]]> code on my html. please help to make site map
ReplyDeletewhich template are you using.
Deletethank you a lot its working
ReplyDeletewould you please help me out with this
ReplyDeletehttp://pakistanifox.blogspot.com/p/blog-page.html
not working for me, no answer brother
You have to publish the codes in content tab instead of HTML.
DeleteI did both ways contact tab also not working for me dont know why...
DeleteYour Url is not available.
Deletesorry a lot so now i delete it
DeleteWorks great, thanks!
ReplyDeleteHere's my blog sitemap url >> http://playnoroid.blogspot.com/p/sitemap.html
is there any limit of posts under this sitemap
ReplyDeleteNo it will show every single post based on categories.
Deletes there any limit of labels under this sitemap
ReplyDeletehow costimaze this sitemap to get it from specific labels only
my url is http://www.archiworldz.ml/p/sitemap_28.html
Sorry but the purpose of site map is to show posts from entire blog.
Deletethanks
DeleteAwesome, works fine here. Would it be possible to include Pages too?
ReplyDeleteNo, it only shows post.
DeleteThanks, It's Working...
ReplyDeletethanks. it works so beautiful
ReplyDeleteWorking.
Deletehttp://pusatbacaku.blogspot.co.id/p/sitemap_7.html
ReplyDeletenot working bro...
Page Not Found
DeleteNot Working https://www.earlycts.com/p/sitemap.html
ReplyDeletePage Not Found
Deletenot working for site www.ezonetoday.com
ReplyDeleteit shows as plain text only .. I wanted to buy paid version ,but don't have a paypal a/c. Any other alternative payment method
Sir Which Size Of Image WIll Look Fit In This Theme. I Upload In Post Many Photos With Difffrent Sizes But No Any Are Fit.. So Please SUggest Me And This Is My Blog URL: www.OnlineFarazAcademy.com
ReplyDeleteAlways Use Original Size.
DeleteNot Working
ReplyDeletehttp://www.jetadoloaded.tk/p/sitemap.html
Page Not Found
DeleteYou haven't added the shortcode correctly.
Deletealready instal jquery 1.11.0 but still not working, please help.
ReplyDeleteThanks.
http://wajoo.blogspot.co.id/p/daftar-isi.html
it is working
Deletewhy not working on seohub?
ReplyDeletehttp://wajoo.blogspot.co.id/p/daftar-isi.html
it is working
DeleteThanks for this!
ReplyDeletegizmoandroid.blogspot.in
Remove Your Credit from your Site HAHAHAHA
DeleteSavage Bro :D
DeleteThanks for your tutorial now my blog have been looks good with your sitemap :)
ReplyDeleteAdded the sitemap to my blog @ http://www.civdigitech.com/ and it worked fine.
ReplyDeletefacing problem in your coupon template, related posts are not showing. in site hostkro.com
ReplyDeleteYour post must have atleast one label.
Deletei ill pay u 10$ can u give me the premium theme and customize my blog ?
DeleteYou can pay us.
DeleteYour blog has only 1 post.
ReplyDeletei tried setting up the sitemap page but this is what i got http://www.gatgist.com/p/sitemap.html
ReplyDeleteSome of your post's doesn't carry label also you haven't activated the recent and featured widgets.
DeleteMy sitemap doesn't work at all.
ReplyDeleteIt show Label but can not click one it.
https://luckdeelaundry.blogspot.com/p/sitemap_78.html
It's not working on basil, so navbar menu disappear and not scrolling.
ReplyDeletehttp://indobiji.blogspot.co.id/p/sitemap.html
Hello,
ReplyDeletePlease how do I input button in my posts e.g download button.
Check here to know what I'm saying.
We include button shortcodes in our templates.
Deleteits working thanks.
ReplyDeletewww.alakbarcenter.com
its working?
ReplyDelete??????
http://www.caminhandonaluz.com/p/sitemap.html
Please help sora, its not working.. I'm not sure if its on jquerry...
ReplyDeletethis is the current default jquery code
ajax/libs/jquery/1.10.2/jquery.min.js
and here is my site http://asiatraveller87.blogspot.com/p/sitemap.html
can you help me..
ReplyDeletehttp://www.ngrakit.com/p/sitemap.html
It's working ut there are some bugs because you haven't activated the recent post, latest comments, and label featured widget.
DeletePls how can I remove the page on the sidebar www.crashsolution.net. The sitemap works fine but pages is showing on the side bar
ReplyDeleteRemove it from layout.
DeletePlease Check is mines working correctly https://movilologia.blogspot.com/p/sitemap.html
ReplyDeletecan I change the Color of in Title Header1 ?
ReplyDeletehttp://www.jasaplafon.com/
change Color of this text
" JASA PASANG PLAFON AMANAH "
Search for this css in your template,
Delete#header h1
then change the value of color.
thank you sir,
ReplyDeletei try it ok
Nice post, i love this post.
ReplyDeletesir i did every thing same mentioned in your tutorial to add a site map i installed jquery in my html before closing head tag this line
ReplyDeletescript type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" script
but still not getting the result please check my blog
http://crankyview.in/
Error in google Webmaster - Your Sitemap appears to be an HTML page. Please use a supported sitemap format instead. I am trying to index my pages . Please Help
ReplyDeleteThis is only a table of content page widget, for webmaster tools you have to submit XML sitemap.
Deletehello sir/mam,
ReplyDeletei have done sitemap but face a problem with search console please help about this.
Errors
Sitemap is HTML
Your Sitemap appears to be an HTML page. Please use a supported sitemap format instead.
1 Tag: html
2 Nov 12, 2017
https://furniture-works.blogspot.in/p/sitemap.html
This is only a table of content page widget, for webmaster tools you have to submit XML sitemap.
Deletehttp://www.simsekblog.com/p/site-map.html
ReplyDeleteI have problem :(
This comment has been removed by the author.
ReplyDeleteThe blog has 0 posts, how will it work ?
DeleteHola, he comprado la plantilla Sofhie y no funciona bien el site map
ReplyDeletehttp://blog.colchonesymas.es/p/site-map.html
Gracias
It's working absolutely fine.
DeleteHi Sora, sorry bat donts working well
Deletehttp://prntscr.com/hn0rte
I have a label that does not work
I bought the template,
How can I contact you to solve a couple of questions?
Use this link to contact the creator.
Deletehttp://www.way2themes.com/p/contact-us.html
How to add space betwen author and date sir?
ReplyDeletehttps://1.bp.blogspot.com/-wxJA5dHBUo8/WitioAOAkKI/AAAAAAAACTU/o6lzOYudKT01ShBwd8v5ePNB4y9kJtmZwCLcBGAs/s1600/Untitled.png
Search for this code and increase the value.
Delete.p-date {
margin-left: 10px;
}
Yuhu... Thx brother.. I have updated the sitemap...
ReplyDeleteThx a lot...
this is my blog
http://natnusantara.blogspot.co.id/
not working properly...
ReplyDeletehttp://www.nationaltimes.in/p/sitemap.html
Neither you have added css nor you have added the javascript.
DeleteGood day, Sora! I need to fix my sitemap which shows some labels are not properly put in sitemap. Please check this site: https://sirm-academy.blogspot.com/p/site.html
ReplyDeleteIts because some of your posts doesn't have image and some of then aren't hosted on blogger.
DeleteHi, Can help me to resolve the sitemap issue. For my blogger it is not working. I followed your post but not working. I am trying from last 4 days. I am using Treasury Blogger Template and Url: www.pharmariim.com. And one more issue is Latest post are not align properly like side by side. If you see the blog you fill find the issue in Latest post. And one more thing is i want replace the current social share icons in every post with elegant share buttons with whats app. How to replace also suggest me. Awaiting for your help.
ReplyDeleteYou haven't added the css or javascript for sitemap.
Deletethanks for the codes!
ReplyDeletenot working, please check
ReplyDeletehttps://information657.blogspot.in/
Share your sitemap page url.
Deletehelp me, sitemap not working!
ReplyDeleteDid not work for my blog and it is one of your templates. https://semurel.blogspot.com/p/sitemap.html
ReplyDeleteNeither you have added the css nor js, how will it work?
DeleteDid not work for my blog and it is one of your templates.
ReplyDeleteMessage: "Invalid variable declaration in page skin: Variable is used but not defined. Input: primary.color"
We have updated the code please check again.
Deletehello
ReplyDeleteDid not work for my blog and it is one of your templates.
http://www.usefulweightlossadvice.ml/
thanks for helping
Share the url of sitemap page.
Deletenice artikel, thanks for share..
ReplyDeleteHi..
ReplyDeleteit's working fine, thanks!
http://www.planespotting.cf/p/sitemap.html
thank you very much it's works so good...
ReplyDeletehttps://duatilu98.blogspot.co.id/p/arsip.html
thanx! it worked with new theme
ReplyDeleteHello, please help me because it is not working on my blog. I'm using Shouters template. My blog is www.asymmetricalife.net/p/sitemap
ReplyDeleteThank you
Working Fine Thank You... :)
ReplyDeleteWorked For Me Thanks Alot Bro That Was Easy With Your Simple Tutorial
ReplyDeleteworked for me thanks alot crimmyb.blogspot.com
ReplyDeletethe sitemap only shows me a tag of several that I have on my blog: c
ReplyDeleteOk
Deleteit's working.thank you so much.
ReplyDeleteThanks sir, it is working with charm.
ReplyDeleteWhen i submit sitemap to webmaster it this shows error.
https://4.bp.blogspot.com/-ktq7iVDsUHM/Wt7ruBKFafI/AAAAAAAAAKQ/dKVeLwGzlUMwHTUCbifH_8CvI4BDBZ90QCLcBGAs/s1600/sitemap.PNG
blog url.
https://prog-hub.blogspot.com
This is not that sitemap which you submit on webmaster tools. Follow this tutorial for that.
Deletehttps://gooyaabitemplates.com/submit-sitemap-to-google-webmaster-tools-in-blogger/
thanks its work https://www.assamjobclub.info
ReplyDeleteNot working on newly optima theme.
ReplyDeletePlease check:-https://smartechnotes.blogspot.in/p/sitemap.html?m=1
thanks its working for me.my website www.tech2zap.in
ReplyDeleteThanks lot, its working properly.
ReplyDeleteThank you so Much :)
ReplyDeleteBuen trabajo, pero algunos articulos no me quedaron en el sitemap, http://ciclismouy.blogspot.com/p/sitemap.html
ReplyDeleteYou have to add labels in every post.
Deleteit's working!
ReplyDeletefor those who hade a problem, your blog should be public to see the changes!!
http://www.zerospanish.com/p/blog-page_2.html
ReplyDeletewhats the problem here ?
404 error.
DeleteThank you Its working http://www.thefunny.in/p/sitemap.html
ReplyDeleteI have premium version and followed all above steps to create a sitemap but all in junk. Kindly check my URL https://www.razidawakhana.com/p/sitemap.html
ReplyDeleteLovely. Thanks
ReplyDeleteThanks :) SoraBloggingTips Website: http://www.the-indians.ooo/p/sitemap.html
ReplyDeleteAlso, another question, is there a way to organize all my Blog posts and have it shown under a custom menu called "Blog". I'm using CV-Blogger template.
ReplyDeleteSorry we can't provide support on additional customization rather than solving issues or bugs, if you want to customize your template then buy our blog customization service.
DeleteI bought Premium Version of SoraBook Blogger Template but I never get any support from the email:soratemplate@gmail.com.When asked that I could not not edit html code and save the template, they replied me that you can do change the html code. I hope, here I get the support.
ReplyDeletePlease Explain your issue.
DeleteNice, its working. Thanks
ReplyDeleteDone Thank You
ReplyDeleteThank you! It works for me ;)
ReplyDeleteI bought the version
ReplyDeleteHI.. NO WORK
https://www.tour-moscu.tours/p/mapa-del-sitio.html
not working sir
ReplyDeleteplease make more easy. and how to install jquery plugin ? and where install it ? its working in blogspot ?
This is the most easiest method we have found till date.
DeleteHey guys its working check my blog
ReplyDeletehttps://letsup-news.blogspot.com/p/sitemap.html?m=1
Very Very thanks this code 100% working parfectly- Proof https://www.surendrastudiotech.com/p/sitemap.html
ReplyDeleteThanks
ReplyDelete.
Cek my blog > https://www.bayudaily.com/
Thank you very much sora blogging tips. It works fine
ReplyDeleteIt's really working on my site
ReplyDeletehttps://www.globaljobs.tk/p/site.html
Thanks sorabloggingtips
Wow!!!
ReplyDeleteHOLA tengo unos errore que nologre corigirlos me podrias ayudarme porfavo saludos
ReplyDeletehttps://mecatronix96.blogspot.com/
Hey there,
ReplyDeleteI'm not sure my sitemap works, can I get some help please?
Please follow tutorial in detail and you will find very easy
DeletePls follow this tutorials
Deletealready mentioned each and everything in above tutorial
DeleteSome labels are shown and some are not please check and solve this issue please
ReplyDeletehttps://uwatchfreetv29.blogspot.com/p/sitemap.html
Please add atleast 1 label in every post
Deletehi, I think sitemap is not working properly for my site. It maps half of my post. Plz do help me.
ReplyDeletehttps://www.quitpit.com/p/sitemap.html
Please add atleast 1 label in every post
DeleteHey its awesome sitemap, but there is a problem regarding sitemap url. It show underscore ( _ ) in sitemap page url. It's not seo friendly url. How to replace underscore ( _ ) with (-) hyphen mark.
ReplyDeleteUpdate me your website url
DeleteWebsite Url Pls
Deletedid not work my blog
ReplyDeletehttps://ayan-abbasi.blogspot.com/p/sitemap.html
Thanks, a lot! working fine.
ReplyDeletehttps://www.mypridenepal.com/p/sitemap.html
thanks you , it work!..... (:
ReplyDeletehttps://arbahiads.blogspot.com/p/sitemap.html
Sitemap works perfect https://madumate2.blogspot.com/p/sitemap.html Thanks
ReplyDeleteWorks perfect. Thank you so much.
ReplyDeleteoke,, work.. its good https://www.agranikcell.com/p/sitemap.html
ReplyDeleteThank you
ReplyDeleteThanks it worked and my blog looks better now
ReplyDeletehttps://www.trybeweb.com.ng/p/sitemap.html
when i added my sitemap in google webmaster then i receive an error of XML tag missing. how i recover this error.
ReplyDelete